home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / prokit34.zip / PROJOIN.INT < prev    next >
Text File  |  1991-04-01  |  1KB  |  45 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1991 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. (*
  14.  * PCB ProDOOR ProJoin unit - join, abandon, config, status, ZIPM
  15.  *
  16.  *)
  17.  
  18. unit ProJoin;
  19.  
  20. interface
  21.  
  22.    uses Tools;
  23.  
  24. procedure select_main_board;
  25. procedure abandon_conference;
  26. procedure display_conference_status(func: char);
  27.    {display status of all conferences; optionally exclude those
  28.     with no new messages in them}
  29.  
  30. procedure conference_registration;
  31. procedure capture_conference(n: integer);
  32. procedure capture_new_mail;
  33. procedure display_conference_news;
  34. procedure join_conference;
  35.  
  36. procedure open_mail_capture;
  37. procedure buffer_mail_capture;
  38. procedure close_mail_capture;
  39. procedure capture_current_message;
  40. function lookup_conference_number(name: anystring): integer;
  41. procedure search_conference_list;
  42.  
  43.  
  44. implementation
  45.